home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Interactive Reference Guide
/
C-C++ Interactive Reference Guide.iso
/
c_ref
/
csource5
/
306_01
/
thread.mk
< prev
next >
Wrap
Text File
|
1991-02-22
|
454b
|
23 lines
# make file for Turbo C++ or Microsoft C
.c.obj :
cl -c -Gs -DNDEBUG $*.c
# tcc -c -DNDEBUG $*.c
all : test.exe bench.exe
test.exe : test.obj thread.obj
cl test.obj thread.obj /link /ST:4096
# tcc test.obj thread.obj
bench.exe : bench.obj thread.obj
cl bench.obj thread.obj /link /ST:4096
# tcc bench.obj thread.obj
test.obj : test.c thread.h
bench.obj : bench.c thread.h
thread.obj : thread.c thread.h